Create a Fully accessed directory
2010/07/21 |
Create a shared directory that anybody can read and write, and authentication is not required.
|
|
[1] | Install Samba |
root@master:~# aptitude -y install samba
|
[2] | Configure Samba |
root@master:~# mkdir /home/share root@master:~# chmod 777 /home/share root@master:~# vi /etc/samba/smb.conf # line 34: add the lines unix charset = UTF-8 # line 64: uncomment and add IP address you allow interfaces = 127.0.0.0/8 10.0.0.0/24 # line 71: uncomment bind interfaces only = yes # line 103: uncomment and change security = share # add at the bottom [Share] # any name you like path = /home/share # shared directory writable = yes # OK to write guest ok = yes # guest OK guest only = yes # guest only create mode = 0777 # fully accessed directory mode = 0777 # fully accessed share modes = yes # warn if some people access to a file root@master:~# service smbd restart smbd start/running, process 3541 |
[3] | Configure on Windows client. Open [My Computer] - [Map Network Drive] . |
[4] | Input shared folder's place in Folder section and Click 'Finish' button to enter. |
[5] | Just accessed |